home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / sethostname.c < prev    next >
C/C++ Source or Header  |  1992-06-16  |  2KB  |  76 lines

  1. /* 
  2.  * sethostname.c --
  3.  *
  4.  *    Procedure to simulate Unix sethostname system call
  5.  *
  6.  * Copyright 1992 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that this copyright
  10.  * notice appears in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/sethostname.c,v 1.1 92/06/16 11:21:13 jhh Exp $ SPRITE (Berkeley)";
  18. #endif /* not lint */
  19.  
  20. #include <sys/param.h>
  21. #include <sys/errno.h>
  22. #include "compatInt.h"
  23.  
  24. /*
  25.  *----------------------------------------------------------------------
  26.  *
  27.  * sethostname --
  28.  *
  29.  *    Sets the host name. 
  30.  *
  31.  * Results:
  32.  *    0 is returned if the call was completed successfully.
  33.  *    Otherwise, -1 is returned and errno gives more information.
  34.  *
  35.  * Side effects:
  36.  *    None.
  37.  *
  38.  *----------------------------------------------------------------------
  39.  */
  40.  
  41. int
  42. sethostname(name, namelen)
  43.     char    *name;        /* New name of host. */
  44.     int        namelen;    /* Length of name. */
  45. {
  46.     char        tmp[MAXHOSTNAMELEN];
  47.     ReturnStatus    status;
  48.  
  49.     if (namelen > MAXHOSTNAMELEN) {
  50.     errno = EINVAL;
  51.     return UNIX_ERROR;
  52.     }
  53.     /*
  54.      * We allow names to lacking a terminating null character because the
  55.      * Unix man pages are ambiguous as to whether it is needed.
  56.      */
  57.     if (name[namelen-1] != '\0') {
  58.     if (namelen < MAXHOSTNAMELEN) {
  59.         if (name[namelen] != '\0') {
  60.         bcopy(name, tmp, namelen);
  61.         tmp[namelen] = '\0';
  62.         name = tmp;
  63.         }
  64.     } else {
  65.         errno = EINVAL;
  66.         return UNIX_ERROR;
  67.     }
  68.     }
  69.     status = Sys_SetHostName(name);
  70.     if (status != SUCCESS) {
  71.     errno = Compat_MapCode(status);
  72.     return UNIX_ERROR;
  73.     }
  74.     return 0;
  75. }
  76.